home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
comm
/
net
/
drexxmail.lha
/
grnmailer.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1994-09-30
|
632b
|
24 lines
/* Mailer.rexx - this is what gives our fudged sendmail the filename */
/* version 3.00 by Rick Taylor, charlet@eng.clemson.edu */
/* V2.00 - added drexxmail: to the sendmail.rexx path - Whoopie. :) */
/* V3.00 - No changes except for different names for GRn/ AmigaElm */
/* GRn's */
options results
address command
/* Let's grab that filename */
call open .Ffile,'t:grnrexxsendmail.name',read
daname = readln(.Ffile)
call close .Ffile
/* Now start up the actual program that sends our mail */
'sys:rexxc/rx drexxmail:grnsendmail.rexx' daname
/* After that harrowing experience, let's close up shop. */
exit